Day 23_ 數值 (Numbers)- 數學
23-1. pi
式子:
import math
print(math.pi)
結果:
3.14159265358979
23-2. 產生亂數
式子:
import random
print(random.randrange(1,20))
結果:
10
5
19
12
3
式子:
import random
x = ['a', 'b', 'c', 'd', 'e']
結果:
a
b
c
d
e
式子:
import random
x = ['a', 'b', 'c', 'd', 'e']
random.shuffle(x)
print(x)
結果:
['b', 'e', 'd', 'c', 'a']
['e', 'b', 'a', 'c', 'd']
['e', 'c', 'b', 'd', 'a']
['b', 'c', 'e', 'a', 'd']
['d', 'b', 'e', 'a', 'c']